home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
NeXT Education Software Sampler 1992 Fall
/
NeXT Education Software Sampler 1992 Fall.iso
/
Programming
/
c-runtime
/
tests
/
SubClass1.h
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1992-08-18
|
375 b
|
37 lines
/* -*-objc-*- */
/*
$Header$
$Author: dglattin $
$Date$
$Log$
*/
#ifndef __SUBCLASS1_H
#define __SUBCLASS1_H
#include <Object.h>
@interface SubClass1 : Object {
char dumb[ 17 ];
}
+initialize;
+ newOther;
- hokeyMethod;
- print;
- print:( const char* )aPhrase;
+ ( int )return12;
- ( int )return15;
- ( int )return24;
- ( int )return33;
@end
#endif